home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Interactive 7
/
PC World Interactive 7.iso
/
program
/
ctutord.EXE
/
56B.C
< prev
next >
Wrap
C/C++ Source or Header
|
1990-08-23
|
248b
|
18 lines
main()
{
static char hello[] = "Hi there";
printarray(hello);
printf("%s\n",hello);
}
printarray(string)
char *string;
{
int i;
while( *string != '\0'){
printf("%c",*string);
*string = 'X';
string++;
}
printf("\n");
}